Description
The Editor.AssetBrowserLocation.<Clone>$
method is a virtual method that creates a new instance of the AssetBrowserLocation
class, effectively duplicating the current instance. This method is useful when you need to create a copy of an existing asset browser location, preserving its properties and state.
Usage
To use the <Clone>$
method, simply call it on an instance of AssetBrowserLocation
. The method does not take any parameters and returns a new AssetBrowserLocation
object that is a copy of the original.
Example
// Assume 'location' is an instance of AssetBrowserLocation
Editor.AssetBrowserLocation clonedLocation = location.<Clone>$();
// Now 'clonedLocation' is a duplicate of 'location' with the same properties.